home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Printing / PageSetupInfo.h < prev    next >
Text File  |  2000-06-23  |  428b  |  28 lines

  1. // PageSetupInfo.h
  2.  
  3. #ifndef PageSetupInfo_h
  4. #define PageSetupInfo_h
  5.  
  6. #ifndef Announcer_h
  7. #include "Announcer.h"
  8. #endif
  9.  
  10. #include <Printing.h>
  11.  
  12. class PrintManager;
  13.  
  14. class PageSetupInfo: public TPrint,
  15.                             public Announcer
  16.   {
  17.     private:
  18.         TPrint& AsTPrint()     { return *this; }        
  19.             // This gets around a bug in CW Pro 4
  20.         
  21.     public:
  22.         explicit PageSetupInfo( PrintManager& );
  23.         
  24.         void ShowDialog( PrintManager& );
  25.   };
  26.  
  27. #endif
  28.